void CDocViewDoc::DrawText(CDC *pDC)
{
	TEXTMETRIC tm;
	pDC->GetTextMetrics(&tm);
	int nLineHeight = tm.tmHeight + tm.tmExternalLeading;

	CString str;
	int line = 0;
	POSITION pos = m_strList.GetHeadPosition();
	for( ; pos != NULL; m_strList.GetNext(pos) )
	{
		str = m_strList.GetAt(pos);
		pDC->TextOut( 0, line*nLineHeight, str );
		line++;
	}
	pDC->TextOut( 0, line*nLineHeight, m_strLastLine );

}
